home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / text / edit / Dutch.lha / Install < prev    next >
Text File  |  1995-08-09  |  641b  |  29 lines

  1. ; Installation script for an AlphaSpell dictionary
  2.  
  3. (transcript "Installing AlphaSpell ...")
  4.  
  5. (set destpath
  6.     (askdir
  7.         (prompt "Install the Dictionary where?")
  8.         (help @askdir-help)
  9.         (default "Work:")
  10.     )
  11. )
  12.  
  13. (copyfiles
  14.     (prompt "Copying AlphaSpell's Dictionaries")
  15.     (help @copyfiles-help)
  16.     (source "Dictionary/")
  17.     (dest destpath)
  18.     (confirm)
  19.     (all)
  20. )
  21.  
  22. (message
  23.     "If you use XES, please update the Dict environment variable with "
  24.     "the requester that XES has for this purpose. Because I was lazy "
  25.     "about putting XES 2.0 together, you will have to source dict.xrc first."
  26. )
  27.  
  28. (exit (quiet))
  29.